home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / emacs_src.lha / emacs-18.58 / contrib / hessu / distinews.lha / gnus.setup.doc next >
Lisp/Scheme  |  1992-07-29  |  2KB  |  47 lines

  1. GNUS needs inews to post a news. I have made a rexx-script to over come this
  2. problem, maybe I will do it in C later. I'll include this script.
  3.  
  4. Installation:
  5.  
  6.     1. Setup gnus straight from the gnus.tar.z. Don't make any changes
  7.        into the elisp code, all changes can be made in the .emacs file.
  8.  
  9.     2. Place the script in the directory you keep all your rexx-scripts.
  10.  
  11.     3. Add the following lines in your .emacs file.
  12.  
  13.         (setq gnus-startup-file "uulib:.newsrc")
  14.  
  15.         (setq gnus-nntp-service nil)
  16.         (setq gnus-nntp-server "")
  17.         (setq gnus-local-domain "your.domain")
  18.         ;;; Do not enter here your nodename, only domain!
  19.         
  20.         (setq gnus-organization-file "env:organization")
  21.         (setq gnus-local-organization "Ferry Island Technologies")
  22.         (setq news-inews-switches '("rexx:inews.rexx"))
  23.         (setq news-inews-program "rx")
  24.         (setq nnspool-inews-switches '("rexx:inews.rexx"))
  25.         (setq nnspool-inews-program "rx")
  26.         ;;; Don't ask me why this is like this. But it works!
  27.  
  28.         (setq nnspool-active-file "uulib:active")
  29.         (setq nnspool-history-file "uulib:history")
  30.  
  31.         (autoload 'gnus "gnus" "Read network news." t)
  32.         (autoload 'gnus-post-news "gnuspost" "Post a news." t)
  33.  
  34.     4. Set an environment variable "organization"
  35.  
  36.     5. Place perg somewhere in your path.
  37.        Perg is like grep (search). But it takes from stdin and puts
  38.        to stdout. Here it is needed to stdin from gnus and stdout
  39.        to a temp file.
  40.  
  41.     6. You will also need fakeactive are similar. GNUS needs the active
  42.        file to find out what groups there are.
  43.  
  44. I am using a software made by Christian Wolf <chris@wolfhh.hanse.de>, to send
  45. and recieve news. This software supports the active-file system and lots
  46. more. It know what to do with control messages, like newgroup, rmgroup, etc.
  47.